home *** CD-ROM | disk | FTP | other *** search
/ Final Fantasy the Spirits Within Cardz / Final Fantasy the Spirits Within CD Cardz - Disc 1: Aki Ross.iso / pc / assets / aki-puzzle.dcr / 00057_picturebutton.ls < prev    next >
Encoding:
Text File  |  2001-07-21  |  777 b   |  42 lines

  1. on mouseEnter
  2.   set the blend of sprite 26 to 100
  3.   cursor(280)
  4. end
  5.  
  6. on mouseLeave
  7.   if the stillDown = 0 then
  8.     set the blend of sprite 26 to 70
  9.   end if
  10.   cursor(-1)
  11. end
  12.  
  13. on mouseWithin
  14.   set the blend of sprite 26 to 100
  15. end
  16.  
  17. on mouseDown
  18.   if keyPressed("s") and keyPressed("a") then
  19.     go("video")
  20.   end if
  21.   set the blend of sprite 26 to 100
  22.   sprite(47).visible = 1
  23.   sprite(48).visible = 1
  24.   set the locH of sprite 47 to 234
  25. end
  26.  
  27. on mouseUp
  28.   set the blend of sprite 26 to 70
  29.   sprite(47).visible = 0
  30.   sprite(48).visible = 0
  31.   set the locH of sprite 47 to -500
  32.   puppetSound("Clicker", 1)
  33. end
  34.  
  35. on mouseUpOutSide
  36.   set the blend of sprite 26 to 70
  37.   sprite(47).visible = 0
  38.   sprite(48).visible = 0
  39.   set the locH of sprite 47 to -500
  40.   puppetSound("Clicker", 1)
  41. end
  42.